What we are going to do here is to make python shell run from anywhere we open the command line
Initially we where running the Python shell from the folder called C:\Python27.
Remember that when we opened our Command Prompt earlier we had to make sure that C:\Python27 was showing on the cmd before we typed and enter the 'python' command. If the command prompt was not showing C:\Python27 and you try to run the 'python' command, you will get an error saying that 'python' is not registered in your computer
What this mean is that you can only run the 'python' command from that C:\Python27 folder.
At this point we are do something to our computer so that when we run the 'python' command from anywhere our command prompt is pointing to we would be able to enter into the python shell
First you have to know the directory Python is installed at and for us that should be C:\Python27. if it is not C:\Python27 then you should get the path to the folder.
if you check that folder you should see folders and python.exe there All that we need right now is C:\Python27 and C:\Python27\Scripts these are the things that hold what we need to make python and its packages available on a global state on your system
Next thing is to add C:\Python27 and C:\Python27\Scripts to your environment variables (if you know how to do that already, you can go ahead and do that)
If you dont know how to go to www.computerhope.com/issues/ch000549.htm
If there is any other issue pls contact the Group
Setting Up pip (go to the Pip Installation folder and get started)